home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / bbs / maxut11.zip / READ.ME < prev   
Text File  |  1996-07-02  |  3KB  |  66 lines

  1. Warning crude, and rough. The idea is open, I hope others will polish.
  2.  
  3. I have two Mex programs that will write Custom File and Message Menus.
  4. I also use as part of the Custom setup a header that will let the users
  5. turn on and off selected areas. I do not use Max groups.
  6. To work the way I have it set up you have to use three parts, F_AREA01.BBS
  7. F_ACHG01.BBS and the one the program makes,F_ALST01.BBS, All three with
  8. the message list also.
  9.  
  10. It will also make include files for Squish, Timed and tic.
  11.  
  12. To work the FULL ECHO TAG UP TO EIGHT characters must be the name of the
  13. message and file areas. Also to make changes you must know some mex.
  14.  
  15. It is working on my BBS, and I think would work on yours with the echo
  16. tags changed.
  17.  
  18. I use C:\Max\Miscx\ for things that are not standard Max.
  19. ;-------------------------------------------------------
  20. Message MENU  - sample does Avatar codes
  21.         ░░░▒▒▒▓▓▓████  Bulletin Board information msg.  ████▓▓▓▒▒▒░░░
  22.  BS2   FIDO: (Maximus Tips'n'Tricks).
  23. ;-------------------------------------------------------
  24. File MENU - sample does Avatar codes
  25. ░░░▒▒▒▓▓▓████      FDN: MAX - Maximus      a20/B     DN       ████▓▓▓▒▒▒░░░
  26.  BMAX1  MAX-FDN: Official Maximus releases.
  27.  a20/B     BMAX1
  28. ;-------------------------------------------------------
  29. Timed.add  - a include file for Timed
  30. EchoArea  "FIDO: (Maximus Tips'n'Tricks)." MUFFIN E:\Msg\Fido\MUFFIN -$
  31. ;-------------------------------------------------------
  32. SQUISH.ADD - a include file for Squish
  33. EchoArea  MUFFIN E:\Msg\Fido\MUFFIN -$ -$d7 1:108/220
  34. ;   BS2  FIDO: (Maximus Tips'n'Tricks).
  35. ;-------------------------------------------------------
  36. TIC-S.CFG
  37. Area G:\Files\MAX\MAXBBS\   MAXBBS
  38. LOCAL NoDupByCrc
  39. 1:108/220       VALLEYS  H*
  40. will add as many as you want.
  41.  
  42. FileSpec  MAXBBS    0 . MAX-FDN: Official Maximus releases.
  43. ;Announce MAXBBS        PUBLIC
  44.  
  45. After FILLST00.vm, is run TIC-S.BAT must be used
  46. ;---------------------------------
  47. I run it out of The Menu addition in MAXKIT20 like this.
  48. Menu SysOpWk
  49.         Headerfile  Miscx\S_MENU
  50. Title TMT Node %k - SysOpWk MENU:   %f, you have %t minutes remaining.
  51.  
  52.         MEX             M\#ATest                     30 "Test NOargv"
  53.         MEX             M\#ATest_ALL                 30 "A Test w/ALL"
  54.         MEX   M\MAXBDL20                            100 "Birthday List"
  55.         MEX   M\DELUSR21_DISP                       100 "Delete User"
  56.   NoDsp Press_Enter                                  10 "D"
  57.         MEX   M\Fillst00                            100 "File List"
  58.         MEX   M\Msglst00                            100 "Msg Lists"
  59. %        Display_File    Miscx\Nupd-Lst              100 "Msg-lsts"
  60.         MEX   M\USRLST20                            100 "User List"
  61.         MEX   M\WIDLST20                            100 "Wide List"
  62.         Display_Menu    SysOp*                      100 "#Sysop menu"
  63.   NoDsp Display_Menu    SysOp*                      100 "|"
  64.         Goodbye                                       0 "Goodbye (log off)"
  65. End Menu
  66.